home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Intuition / Screens / smakefile < prev   
Encoding:
Makefile  |  1996-03-20  |  552 b   |  29 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all:    clonescreen doublebuffer dualplayfield newlookscreen \
  4.     publicscreen pubscreenbeep screen34to37
  5.  
  6. clonescreen: clonescreen.c
  7.     sc link $(CFLAGS) $@
  8.  
  9. doublebuffer: doublebuffer.c
  10.     sc link $(CFLAGS) $@
  11.  
  12. dualplayfield: dualplayfield.c
  13.     sc link $(CFLAGS) $@
  14.  
  15. newlookscreen: newlookscreen.c
  16.     sc link $(CFLAGS) $@
  17.  
  18. publicscreen: publicscreen.c
  19.     sc link $(CFLAGS) $@
  20.  
  21. pubscreenbeep: pubscreenbeep.c
  22.     sc link $(CFLAGS) $@
  23.  
  24. screen34to37: screen34to37.c
  25.     sc link $(CFLAGS) $@
  26.  
  27. clean:
  28.     -delete \#?.(o|lnk)
  29.